Raw Source
BZHDeveloper / [TMP] suppression balise <head>

// ==UserScript==
// @name          [TMP] suppression balise <head>
// @version       0.0.1
// @namespace     http://www.hdmyt.info
// @description   suppression balise <head>
// @icon          http://reho.st/self/40f387c9f48884a57e8bbe05e108ed4bd59b72ce.png
// @include       http://www.hdmyt.info/player.php*
// @include       http://www.beinsport-streaming.info/stream/*.php  
// @downloadURL   http://breizhodrome.free.fr/hfr/scripts/suppression_balise_head.user.js    
// @updateURL     http://breizhodrome.free.fr/hfr/scripts/suppression_balise_head.user.js                                          
// @author        BZHDeveloper
// @license       GPL-3.0+
// @noframes
// @run-at        document-start
// @grant         GM_info
// @grant         GM_deleteValue
// @grant         GM_getValue
// @grant         GM_listValues
// @grant         GM_setValue
// @grant         GM_getResourceText
// @grant         GM_getResourceURL
// @grant         GM_addStyle
// @grant         GM_log
// @grant         GM_openInTab
// @grant         GM_registerMenuCommand
// @grant         GM_setClipboard
// @grant         GM_xmlhttpRequest
// ==/UserScript==

if (document.location.href.indexOf ("www.beinsport-streaming.info") > 0) {
  window.location.href = document.querySelector("iframe").src;
}
else {
  document.head.parentElement.removeChild (document.head);
}